#red {
  color: rgba(150, 0, 0, 1);
  font-weight: bold;
}

#center {
  text-align: center;
}

#border {
  border: 2px solid rgba(255, 0, 0, .8);
  padding: 5px;
}

#header {
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: underline;
}

#header2 {
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: underline;
}

#emphasize {
  font-weight: bold;
}

.list {
  margin-left: 30px;
}

.list ul li:first-child {
  list-style: none;
}


.content {
  display: flex;
  width: 70vw;
  margin: 6em auto 3em auto;
}

.text-container {
  width: 40vw;
  max-width: 800px;
  min-width: 460px;
  line-height: 1.4em;
  padding: 10px;
  border-left: 5px solid rgba(120, 120, 120, .5);
  font-size: 1.1em;
}

.text-container h1 {
  margin-bottom: 1em;
}

.btn-container {
  width: 500px;
}

.btn-container .scroll-container {
  position: fixed;
  transition: transform .5s ease;
}

.btn-container .scroll-container .picture-container {
  border-left: 5px solid rgba(66, 188, 245, .8);
  margin-top: 20px;
  width: 231px;
  height: 226px;
  transition: .5s ease;
}

#big-container {
  height: 255px;
}

#big-container p {
  text-align: center;
  margin: 20px 0 0 20px;
  color: rgba(66, 188, 245, .8);
  padding: 0;
}

.btn-container .scroll-container .picture-container .picture {
  position: relative;
  top: 10px;
  margin-left: 20px;
  width: 206px;
  height: 206px;
  border: 1px solid rgba(66, 188, 245, 1);
  background-size: cover;
  border-radius: 100%;
  cursor: pointer;
  transition: .5s ease;
  box-shadow: 5px 5px 10px rgba(66, 188, 245, .5);
}

.btn-container .scroll-container .picture-container .picture:hover {
  box-shadow: 10px 10px 20px rgba(66, 188, 245, .5);
}

.btn-container .scroll-container .picture-container:hover {
  transform: translateY(5px);
}

.btn-content {
  border-left: 5px solid rgba(255, 0, 0, .8);;
  padding: 10px;
  transition: transform .5s ease;
}

.btn-content h1, .btn-content p, .btn-content a {
  margin-bottom: 1em;
}

.btn-content p, .btn-content a {
  font-size: 1.1em;
}

.btn-content p span {
  color: rgba(255, 0, 0, .8);
}

.btn-content a {
  font-weight: bold;
  padding-bottom: .5em;
  color: rgba(255, 0, 0, .8);
  transition: .5s ease;
}

.btn-content a:hover {
  text-shadow: 1px 1px 10px rgba(255, 0, 0, .4);
}

img {
  width: 40vw;
  max-width: 800px;
  display: block;
  border: 2px solid rgba(120, 120, 120, .5);
  transition: .5s ease;
}

img:hover {
  transform: scale(1.5);
  box-shadow: 10px 10px 10px rgba(120, 120, 120, .5);
}

@media only screen and (max-width: 1200px) {

  .content {
    width: 90vw;
  }

  .btn-content {
    width: 400px;
  }

}

@media only screen and (max-width: 950px) {

  .content {
    flex-flow: column;
    margin-top: 4em;
    width: 90vw;
  }

  img {
    width: 85vw;
  }

  img:hover {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(120, 120, 120, .5);
  }

  .text-container, .btn-container {
    width: 90vw;
    min-width: 0;
  }

  .btn-container {
    margin-bottom: 3em;
  }

  .btn-content {
    position: relative;
    max-width: auto;
    width: 90vw;
  }

  .scroll-container {
    position: relative;
  }

}
